home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / network / slippr15.zip / SLIPPER.DOC < prev    next >
Text File  |  1994-01-15  |  3KB  |  85 lines

  1.                 SLIPPER and CSLIPPER Release 1.5
  2.                 --------------------------------
  3.  
  4. Slipper is a replacement for SLIP8250.  It provides a basic functionality
  5. packet driver using the SLIP protocol.  It is written completely from scratch
  6. using Turbo Pascal and Assembler.  Slipper has (hopefully) been designed for
  7. high baud rate operation with standard non-fifo 8250 chips.
  8.  
  9. Usage:   slipper [com<digit 1-4>] [vec=<hex vector>] [baud=<speed>]
  10.                  [ether] [nohwhs] [?]
  11.  
  12. for Van Jacobson TCP Header Compression, use the alternative form
  13.  
  14.          cslipper ....
  15.  
  16. options (in any order):
  17.  
  18.         com<digit 1-4>   The serial comm ports 1 to 4.
  19.                          com1      base=3f8, irq=4  (default)
  20.                          com2      base=2f8, irq=3
  21.                          com3      base=3e8, irq=4
  22.                          com4      base=2e8, irq=3
  23.  
  24.         port=<hex port>  override the com port setting  (0000-FFFF)
  25.  
  26.         irq=<hex digit>  override the com irq setting  (0-F)
  27.  
  28.         vec=<hex vector> the packet driver interrupt vector
  29.                          default is 60
  30.  
  31.         baud=<speed>     baud rate of the connection
  32.                          default is the current speed setting.
  33.                          max = 115200
  34.  
  35.         ether            simulate an ethernet board. (IP and ARP only)
  36.                          default is non-ethernet
  37.  
  38.         nohwhs           disable hardware handshakes.
  39.  
  40.         keepalive        enable a once per minute keep alive byte to
  41.                          be transmitted.
  42.  
  43.         ?                display the commands.
  44.  
  45. examples
  46.         slipper
  47.  
  48.            - com1, vector=60H, baud=whatever defined, non-ethernet
  49.  
  50.         slipper com3 vec=63 baud=38400 ether
  51.  
  52.            - com3, vector=63H, baud=38400, ethernet simulation
  53.  
  54.  
  55. also, you can type
  56.  
  57.     slipper ?
  58.  
  59. for the commands.
  60.  
  61.  
  62.  
  63.  
  64. Send any comments or bug reports to peter@psychnet.psychol.utas.edu.au
  65.  
  66.  
  67. Version 1.1 release adds support for 16550 chips.  (FIFO trigger level 4 on
  68. receive)
  69.  
  70. Version 1.2 fixes some 16550 bugs and includes support for CSLIP.  Due to the
  71. bulkiness of supporting cslip, there are two version of slipper provided.  The
  72. standard version is called SLIPPER, and the CSLIP version is called CSLIPPER.
  73. The command line parameters are the same for both versions.
  74.  
  75. Version 1.3 fixes some bugs in the CSLIP part, and does a slight
  76. tidyup/speedup of some of the code and reduces stack requirements.  Also
  77. added a handle for RARP packet types in the ether simulation.
  78.  
  79. Version 1.4 fixes a bug dissallowing using a vector pointing to an
  80. IRET instruction, and also adds an option to disable hardware handshaking.
  81.  
  82. Version 1.5 fixes some more bugs, noticeably, a bug in CSLIP processing of
  83. urgent data.
  84.  
  85.